  /* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;600&display=swap'); */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color:#194756;
    
}
.counter{
  color: rgb(49, 24, 71);
}
#signMsg{
  margin-bottom: 1rem;
}
header{
  background-color: rgb(7, 226, 255);
  width: 100%;
/* padding: 0.5rem; */
margin-bottom: 3rem;
height: 7vh;
}
body{
  background-color: aquamarine;
  /* background-image: ; */
  background-image: url("../media/clicker.jpg");
  background-size: cover;
  min-height: 100vh;

  display: flex;
  /* justify-content: center; */
  /* justify-content: end; */
  flex-direction: column;
  align-items: center;
}
.section
{
    /* background-color: aqua; */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
gap: 1rem;
  }
ul{
  background-color:#FFCD8C;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding: 1rem; */
  height: 100%;

}
ul a{
  font-weight: 600;
  /* font-size: larger; */
}
nav{
  height: 100%;
}
a{
  text-decoration: none;
}
form{
  position: absolute;
  top: 12rem;
  right: 12rem;
  padding: 2rem;
/* gap: 1rem; */
background-color: rgb(238, 238, 238);
display: flex;
flex-direction: column;
align-items: center;

border-radius: 15px;
}
.welcomeBox{
margin-top: 6%;

  background-color: rgba(248,248,249,.6);
  backdrop-filter: blur(25px);
width: 25%;
padding: 3rem;
font-weight: 600;
font-size: larger;
border-radius: 15px;
display: flex;
flex-direction: column;
}
p{
  margin-bottom: 1rem;
}

/* form input{
padding: 0.2rem;  
margin: 0.7rem;
} */
/* form button{
  padding: 0.4rem; 
  width: 50%; 
  
} */
.btn_div{
display: flex;
gap: 1rem;
/* background-color: aquamarine; */
}
button {
  background-color:#FFCD8C;
  color: rgb(0, 0, 0);
  font-weight: 500;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #14c8e7;
}
h2{
  margin-bottom: 2rem;
}
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 16px;
}
#game{
  border-radius: 15px;
  background-color: rgba(248,248,249,.6);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  /* margin-left: 45rem; */
  margin-top: 15%;
  /* position: absolute;
  top: 12rem;
  right: 12rem; */
  padding: 2rem;
  gap: 1rem;
}

#sound{
  width: 2rem;
 
 border-radius: 15px;
}
#noSound{
  width: 2rem;

 border-radius: 15px;
}
#stopSound{
  display: none;
}

